-
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) · 800 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 800 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='saxs_single_bead',
version='0.0.3',
description='All Python package to compute small angle X-ray scattering (SAXS) profiles in one-bead-per-residue approximation with numpy',
url='https://github.com/RadostW/saxs_single_bead/',
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://saxs_single_bead.readthedocs.io',
'Source': 'https://github.com/RadostW/saxs_single_bead/'
},
license='MIT',
packages=['saxs_single_bead'],
zip_safe=False)