-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.01 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
import hask
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
des = "Haskell language features and standard library ported to Python"
setup(
name='hask',
version=hask.__version__,
description=des,
long_description=open('README.md').read(),
author='Siegmentation Fault (original author: Bill Murphy)',
author_email='[email protected]',
url='https://github.com/forked-from-1kasper/hask',
packages=['hask', 'hask.lang', 'hask.Python', 'hask.Data',
'hask.Control'],
package_data={'': ['LICENSE', 'README.md']},
include_package_data=True,
install_requires=[],
license=open('LICENSE').read(),
zip_safe=False,
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10'
),
)