forked from CRIMAC-WP4-Machine-learning/CRIMAC-preprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (21 loc) · 799 Bytes
/
setup.py
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
# -*- coding: utf-8 -*-
import setuptools
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
with open('requirements.txt') as file:
requirements = [line.strip() for line in file.readlines() if not line.startswith('git+')]
setuptools.setup(
name='CRIMAC-preprocessing',
version='0.0.1',
description='preprocessing script, forked from CRIMAC',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/bberges/CRIMAC-preprocessing.git',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
packages=setuptools.find_packages(),
install_requires=requirements,
)