-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
24 lines (19 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
import os
from setuptools import setup, find_packages
from codecs import open # For consistent encoding
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()
with open(os.path.join(here, 'requirements.txt'), encoding='utf-8') as f:
requirements = f.read().splitlines()
packages = find_packages(exclude=['tests'])
setup(
name='NodeCalculator',
version='2.0.1',
description='This OpenSource Python module allows you to create node networks in Autodesk Maya by writing math formulas.',
long_description=long_description,
url='https://github.com/mischakolbe/node_calculator',
license='Modified Apache 2.0 License',
packages=packages,
install_requires=requirements,
)