-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 1.05 KB
/
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
27
28
29
30
31
import sys
from setuptools import setup
__author__ = 'Zachariah Reed'
__version__ = '0.2'
__contact__ = '[email protected]'
__url__ = 'https://github.com/zachariahreed/byteasm'
__license__ = 'GPL'
if sys.version_info < (3,6) :
raise NotImplementedError( 'byteasm requires Python 3.6+' )
setup(
name = 'byteasm'
, version = __version__
, description = 'an assembler for python bytecode'
, author = __author__
, author_email = __contact__
, url = __url__
, packages = ['byteasm']
, license = __license__
, platforms = 'any'
, download_url = 'https://github.com/zachariahreed/byteasm/tarball/' + __version__
, classifiers = [
'Development Status :: 4 - Beta'
, 'Intended Audience :: Developers'
, 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'
, 'Programming Language :: Python :: 3 :: Only'
, 'Programming Language :: Python :: 3.6'
]
)