-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
34 lines (30 loc) · 997 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
26
27
28
29
30
31
32
33
34
import setuptools
import os
import struct
import distutils.command.install
from os import path
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
long_description = ""
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setuptools.setup(
name="rhinoinside",
version="0.6.0",
packages=['rhinoinside'],
include_package_data=True,
author="Robert McNeel & Associates",
author_email="[email protected]",
description="Embed Rhino in CPython",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mcneel/rhino.inside/tree/master/CPython",
install_requires=['pythonnet'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python"
]
)