forked from fedora-python/rewheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·26 lines (24 loc) · 865 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except:
from distutils.core import setup, find_packages
setup(
name = 'rewheel',
version = '0.1.0',
description = 'Recreate Wheel files from installed packages',
long_description = 'Recreate Wheel files from installed packages',
keywords = 'wheel',
author = 'Slavek Kabrda',
author_email = '[email protected]',
license = 'MIT',
packages = find_packages(),
entry_points = {'console_scripts': ['rewheel=rewheel:run']},
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
]
)