-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (32 loc) · 1.19 KB
/
setup.py
File metadata and controls
43 lines (32 loc) · 1.19 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
from setuptools import find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='solidity-unfolder',
packages=find_packages(),
description='A Python package to unfold soldity code with imports into a single file.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jun-You Liu',
author_email='junyouliu9@gmail.com',
url='https://github.com/Jy-Liu/solidity-unfolder',
version='1.0.1',
license='MIT',
keywords='soldity solidity-unfolder solidity-flattener \
smart-contracts ethereum',
install_requires=[],
scripts=['bin/solu'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3',
)