forked from OpenAssets/openassets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 893 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
27
28
29
30
#!/usr/bin/env python
import openassets
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
setuptools.setup(
name = 'openassets',
version = openassets.__version__,
packages = [ 'openassets' ],
description = 'Reference implementation of the Open Assets Protocol',
author = 'Flavien Charlon',
author_email = '[email protected]',
url = 'https://github.com/OpenAssets/openassets',
license = 'MIT License',
install_requires = [
],
test_suite = 'tests',
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)