-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (28 loc) · 1.17 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 setuptools
def read(fname):
with open(fname, 'r') as f:
return f.read()
setup(
name = 'py-libnuma',
description = 'Python3 libnuma ctypes wrapper',
long_description = read('README.md'),
long_description_content_type="text/markdown",
packages = setuptools.find_packages(),
version = '1.2',
author = 'Xiulong Yuan, Zhan Lu, Zheng Zeng',
url = 'https://github.com/eedalong/pynuma',
license = 'License :: OSI Approved :: MIT License',
platforms = 'Linux',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python'
],
)