forked from RadostW/PyGRPY
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 689 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='PyGRPY',
version='0.1.0',
description='Python port of Generalized Rotne Prager Yakamava tensors',
url='https://github.com/RadostW/PyGRPY/',
author='Radost Waszkiewicz',
author_email='radost.waszkiewicz@gmail.com',
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
project_urls = {
'Documentation': 'https://pygrpy.readthedocs.io',
'Source': 'https://github.com/RadostW/PyGRPY/'
},
license='GNU GPLv3',
packages=['pygrpy'],
zip_safe=False)