-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (40 loc) · 1.34 KB
/
setup.py
File metadata and controls
47 lines (40 loc) · 1.34 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import find_packages, setup
GITHUB_URL = "https://github.com/AnshulRanjan2004/Meta-ROS"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# read the contents of README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="metaros",
version="1.1.5",
description="Meta-ROS middleware",
long_description=long_description,
long_description_content_type="text/markdown",
author="Anshul Ranjan",
author_email="itsanshulranjan@gmail.com",
maintainer="Anshul Ranjan",
maintainer_email="itsanshulranjan@gmail.com",
url=GITHUB_URL,
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=classifiers,
license="BSD-3-Clause",
install_requires=[
"numpy>=1.23.4",
"pyzmq>=24.0.1",
"setuptools>=59.6.0",
],
project_urls={"Bug Reports": GITHUB_URL + "/issues", "Source": GITHUB_URL},
)