forked from SintefManufacturing/IMM_API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 845 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
import os
from distutils.core import setup
from distutils.command.install_data import install_data
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'Injection Moulding Machine API Python',
version='1.0',
description = 'IMM API package for Python.',
author = 'Mats Larsen, Olga Ogorodnyk',
author_email = '[email protected]',
url = 'https://github.com/SintefManufacturing/IMM_API.git',
packages = ['imm','revpi_daq','imm_system'],
provides = ['imm','revpi_daq','imm_system'],
long_description=read('README.md'),
classifiers = [
'Development Status :: Development',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
license = 'MIT'
)