Last change
on this file since 134 was 134, checked in by wouter, 4 years ago |
added first python project. Needs some more cleanup
|
File size:
453 bytes
|
Rev | Line | |
---|
[134] | 1 | from setuptools import setup, find_packages
|
---|
| 2 |
|
---|
| 3 | setup(
|
---|
| 4 | name='jackson',
|
---|
| 5 | version='1.0.0',
|
---|
| 6 | description='simple python-based imitation of java-jackson',
|
---|
| 7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb',
|
---|
| 8 | author='W.Pasman',
|
---|
| 9 | #packages={'src':'*'},
|
---|
| 10 | packages = find_packages(),
|
---|
| 11 | package_data = { 'jackson': ['py.typed'] },
|
---|
| 12 | install_requires=[ ],
|
---|
| 13 |
|
---|
| 14 | classifiers=[
|
---|
| 15 | 'Programming Language :: Python :: 3',
|
---|
| 16 | ],
|
---|
| 17 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.