-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
38 lines (33 loc) · 1.15 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
import os
import sys
_here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
version = {}
with open(os.path.join(_here, 'version.py')) as f:
exec(f.read(), version)
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name="dlmfg",
version=version['__version__'],
author="Sumit Sinha",
author_email="[email protected]",
description="Deep Learning applications for manufacturing",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/sumitsinha/Deep_Learning_for_Manufacturing",
packages=find_packages(),
license='MIT',
include_package_data=True,
install_requires=required,
classifiers=[
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
)