|
a |
|
b/setup.py |
|
|
1 |
#!/usr/bin/env python |
|
|
2 |
# -*- coding: utf-8 -*- |
|
|
3 |
|
|
|
4 |
"""The setup script.""" |
|
|
5 |
|
|
|
6 |
from setuptools import setup, find_packages |
|
|
7 |
|
|
|
8 |
with open('README.md') as readme_file: |
|
|
9 |
readme = readme_file.read() |
|
|
10 |
|
|
|
11 |
requirements = [] |
|
|
12 |
|
|
|
13 |
setup_requirements = [] |
|
|
14 |
|
|
|
15 |
test_requirements = [] |
|
|
16 |
|
|
|
17 |
setup( |
|
|
18 |
author="Egor Panfilov", |
|
|
19 |
author_email='egor.v.panfilov@gmail.com', |
|
|
20 |
classifiers=[ |
|
|
21 |
'Development Status :: 4 - Beta', |
|
|
22 |
'Intended Audience :: Science/Research', |
|
|
23 |
'License :: OSI Approved :: MIT License', |
|
|
24 |
'Natural Language :: English', |
|
|
25 |
'Programming Language :: Python :: 3', |
|
|
26 |
'Programming Language :: Python :: 3.6', |
|
|
27 |
'Programming Language :: Python :: 3.7', |
|
|
28 |
], |
|
|
29 |
description="Framework for knee cartilage and menisci segmentation from MRI", |
|
|
30 |
install_requires=requirements, |
|
|
31 |
license="MIT license", |
|
|
32 |
long_description=readme, |
|
|
33 |
include_package_data=True, |
|
|
34 |
name='rocaseg', |
|
|
35 |
packages=find_packages(include=['rocaseg']), |
|
|
36 |
setup_requires=setup_requirements, |
|
|
37 |
tests_require=test_requirements, |
|
|
38 |
url='https://github.com/MIPT-Oulu/RobustCartilageSegmentation', |
|
|
39 |
version='0.1.0', |
|
|
40 |
zip_safe=False, |
|
|
41 |
) |