forked from ThomasNeve/pySldWrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.05 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
from setuptools import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name = 'pySldWrap',
packages = ['pySldWrap'],
version = '0.1',
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Python Solidworks interface',
long_description = long_description,
long_description_content_type='text/markdown',
author = 'Thomas Neve',
author_email = 'thomas.neve@ugent.be',
url = 'https://github.com/ThomasNeve/pySldWrap',
download_url = 'https://github.com/ThomasNeve/pySldWrap/archive/v0.1.tar.gz',
keywords = ['solidworks', 'wrapper'],
install_requires=[ # I get to this in a second
'numpy',
'pywin32',
'pathlib'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
python_requires='>=3.6',
)