#17 Added setup.py for packaging purposes.
Closed 4 years ago by asaleh. Opened 4 years ago by asaleh.
fedora-infra/ asaleh/rpmautospec add_setup  into  master

file added
+14
@@ -0,0 +1,14 @@ 

+ #!/usr/bin/env python

+ 

+ from setuptools import setup

+ 

+ setup(name='rpmautospec',

+       version='0.0.1',

+       description='The rpmautospec tool',

+       author='Nils Philipsen',

+       author_email='nphilip@redhat.com',

+       url='https://pagure.io/fedora-infra/rpmautospec/',

+       packages=['rpmautospec'],

+       entry_points={

+           'console_scripts': ["rpmautospec = rpmautospec.cli:main"]

+       })

Setup for the package and cli tool.

Build failed.

Maybe we could add some classifiers to the setup.py to indicate license as well as which python versions are supported in the code.

Doc: https://packaging.python.org/guides/distributing-packages-using-setuptools/#classifiers

Pull-Request has been closed by asaleh

4 years ago